home *** CD-ROM | disk | FTP | other *** search
- on(release, keyPress "<Enter>"){
- if(cheatcode == "livestrong" or cheatcode == "LIVESTRONG")
- {
- if(livestrong == 1)
- {
- livestrong = 0;
- cheatactivated = "No LiveStrong Band";
- cheatdesc = "LiveStrong Band Mode has been disabled.";
- }
- else
- {
- livestrong = 1;
- cheatactivated = "LiveStrong Band";
- cheatdesc = "Everyone\'s wearing yellow LiveStrong bands, even Megaman! (works only with Megaman)";
- }
- gotoAndPlay(8300);
- }
- else if(cheatcode == "damncat" or cheatcode == "DAMNCAT")
- {
- if(lives == 5)
- {
- lives = 2;
- cheatactivated = "Standard Lives";
- cheatdesc = "Extra Lives Mode has now been disabled.";
- }
- else
- {
- lives = 5;
- cheatactivated = "Extra Lives";
- cheatdesc = "Start the game with six lives.";
- }
- gotoAndPlay(8300);
- }
- else if(cheatcode == "beastie" or cheatcode == "BEASTIE")
- {
- if(sabotage == 1)
- {
- sabotage = 0;
- cheatactivated = "Normal 03 Track";
- cheatdesc = "The alternate music for Chapter 03 has been disabled.";
- }
- else
- {
- sabotage = 1;
- cheatactivated = "Alternate 03 Track";
- cheatdesc = "Chapter 03 will now play an alternate music track.";
- }
- gotoAndPlay(8300);
- }
- else if(cheatcode == "fuctup" or cheatcode == "FUCTUP")
- {
- if(reverse == 1)
- {
- reverse = 0;
- cheatactivated = "Normal Polarities";
- cheatdesc = "Reversed Polarities Mode has been disabled.";
- }
- else
- {
- reverse = 1;
- cheatactivated = "Reversed Polarities";
- cheatdesc = "Fire and absorb the polarity opposite of your shield.";
- }
- gotoAndPlay(8300);
- }
- else if(cheatcode == "triplezero" or cheatcode == "TRIPLEZERO")
- {
- if(player == "protoman")
- {
- player = "megaman";
- cheatactivated = "Play as Megaman";
- cheatdesc = "Protoman Mode has now been disabled.";
- }
- else
- {
- player = "protoman";
- cheatactivated = "Play as Protoman";
- cheatdesc = "Need I say more?";
- }
- gotoAndPlay(8300);
- }
- else
- {
- gotoAndPlay(592);
- }
- }
-